home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / util / app / EuroTrash.lha / EuroTrash / Deinstall next >
Text File  |  1997-08-31  |  1KB  |  53 lines

  1. (SET @default-dest "Sys:WBStartup")
  2.  
  3. (IF (= @language "svenska")
  4.     (
  5.         (SET #welcome "Detta installerarprogram kommer att ta bort EuroTrash!\n\n")
  6.         (SET #exitHelp "EuroTrash är borttaget!\n\n")
  7.     )
  8.     (
  9.         (SET #welcome "This installer script will remove EuroTrash from your system!\n\n")
  10.         (SET #exitHelp "EuroTrash has been removed!\n\n")
  11.     )
  12. )
  13.  
  14. (WELCOME #welcome)
  15.  
  16. (COMPLETE 0)
  17.  
  18. (IF (EXISTS "SYS:WBStartup/EuroTrash" (NOREQ) )
  19.     (DELETE "SYS:WBStartup/EuroTrash"
  20.             (INFOS)
  21.     )
  22. )
  23.  
  24. (COMPLETE 25)
  25.   
  26. (IF (EXISTS "HELP:EuroTrash.guide" (NOREQ) )
  27.     (DELETE "HELP:EuroTrash.guide"
  28.             (INFOS)
  29.     )
  30. )
  31.  
  32. (COMPLETE 50)
  33.  
  34. (IF (EXISTS "LOCALE:Catalogs/EuroTrash.cd" (NOREQ) )
  35.     (DELETE "LOCALE:Catalogs/EuroTrash.cd")
  36. )
  37.  
  38. (COMPLETE 63)
  39.  
  40. (IF (EXISTS "LOCALE:Catalogs/EuroTrash.ct" (NOREQ) )
  41.     (DELETE "LOCALE:Catalogs/EuroTrash.ct")
  42. )
  43.  
  44. (COMPLETE 87)
  45.  
  46. (IF (EXISTS "LOCALE:Catalogs/svenska/EuroTrash.catalog" (NOREQ) )
  47.     (DELETE "LOCALE:Catalogs/svenska/EuroTrash.catalog")
  48. )
  49.  
  50. (COMPLETE 100)
  51.  
  52. (EXIT #exitHelp (QUIET))
  53.